home *** CD-ROM | disk | FTP | other *** search
/ PC Media 22 / PC MEDIA CD22.iso / share / prog / txtmenu1 / txtfunc.h < prev    next >
C/C++ Source or Header  |  1993-01-01  |  2KB  |  69 lines

  1. /*
  2.         About       TXTMENU
  3.  
  4. This program is to generate a txt-menu in DOS. It is mainly for users to
  5. develop their own txt-based menu. It reads the .cfg file to get the menu
  6. contents and return diffrerent value to indicate the select result.
  7. It has wonderful sound effect and some time counting facility. Besides,
  8. it includes all SOURCE CODE !
  9.  
  10. To start it just type the exe file and the program will work.
  11.  
  12. With  SOURCE CODE , you can easily modify it for your own purpose.
  13. You can distribute the source code freely only together with this readme
  14. file. Since this is a shareware, you are required to register in order
  15. to use it in your own program. It will only cost you $50. 
  16.  
  17. However, if you do not like to pay so much, you can also pay as much as you 
  18. wish to register. Just think the time and energe you will save by this
  19. program !
  20.  
  21. After you register for this program, you will get permission to 
  22. include the source code to your own program. Besides,you will also
  23. get more detailed comments of the source code and you can get answers
  24. from author about any programming problems without extra fee.
  25.  
  26. Money and Check should mail to:
  27.  
  28. Mr. Yongyong Xu,
  29. 1940 Howard Street. Apt. 333,
  30. Kalamazoo, MI 49008
  31. U.S.A.
  32.  
  33. Telephone: (616) 387-7569
  34. EMail:  yxu@cs.wmich.edu   (prefered)
  35.             or
  36.         99xu1@grog.lab.cc.wmich.edu
  37.  
  38. */
  39. #ifndef __TXTFUNC_H
  40. #define __TXTFUNC_H
  41.  
  42.  
  43. #define ESC       27
  44. #define ENTER     13
  45. #define BACKSPACE 8
  46.  
  47. void    zxexit();
  48. void    rect(int x1,int y1,int x2,int y2,int mode);
  49. void    face();
  50. void    inputstring(int x,int y,char * instr);
  51. void    datainput(int x,int y,char *s,char *s1);
  52.  
  53.  
  54. #ifdef __YYXMAIN
  55.  
  56. char title0[80];
  57. char title1[80];
  58. int     color1=LIGHTBLUE, color2=BLUE;
  59.  
  60. #else
  61.  
  62. extern    char title0[80];
  63. extern    char title1[80];
  64. extern     int  color1, color2;
  65.  
  66. #endif
  67.  
  68. #endif
  69.